home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Interplay's Learn to Program Basic (Review Copy)
/
Learn to Program Basic Review Copy (Interplay)(June 23, 1998).ISO
/
pc
/
ltpbasic
/
refxmpl
/
sound.bas
< prev
next >
Wrap
BASIC Source File
|
1998-04-07
|
162b
|
11 lines
Rem NoiseMaker
Cls
Print "Hit SPACEBAR to play sound, or Q to quit"
While TRUE
a$ = Inkey$
If a$ = "Q" OR a$="q" Then End
If a$ = " " Then Sound "Whiz"
Wend
End